home *** CD-ROM | disk | FTP | other *** search
- VERSION 4.00
- Begin VB.Form HelpForm
- BackColor = &H8000000A&
- BorderStyle = 4 'Fixed ToolWindow
- Caption = "Helpfile"
- ClientHeight = 6915
- ClientLeft = 2550
- ClientTop = 750
- ClientWidth = 8010
- Height = 7320
- Left = 2490
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 6915
- ScaleWidth = 8010
- ShowInTaskbar = 0 'False
- Top = 405
- Width = 8130
- Begin VB.TextBox Text1
- BackColor = &H00C0C0C0&
- BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
- Name = "MS Sans Serif"
- Size = 9.75
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- ForeColor = &H00800080&
- Height = 6540
- Left = 45
- MultiLine = -1 'True
- ScrollBars = 2 'Vertical
- TabIndex = 0
- Text = "HelpForm.frx":0000
- Top = 360
- Width = 7935
- End
- Begin VB.PictureBox Picture1
- BackColor = &H00C0C0C0&
- BorderStyle = 0 'None
- Height = 240
- Left = 6660
- ScaleHeight = 240
- ScaleWidth = 330
- TabIndex = 1
- Top = 45
- Width = 330
- End
- Begin VB.Label Label1
- Caption = "IconAlbumDeluxe"
- BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
- Name = "MS Sans Serif"
- Size = 9.75
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- ForeColor = &H00800000&
- Height = 285
- Left = 90
- TabIndex = 2
- Top = 45
- Width = 3210
- End
- Attribute VB_Name = "HelpForm"
- Attribute VB_Creatable = False
- Attribute VB_Exposed = False
- Private Sub Form_Load()
- Open IBpath + "\helpfile.txt" For Input As #1
- HelpForm.Text1.Text = Input(LOF(1), 1)
- Close #1
- End Sub
- Private Sub Text1_GotFocus()
- Picture1.SetFocus
- End Sub
-